runtime.maptype.bucket (field)

20 uses

	runtime (current package)
		map.go#L263: 		ovf = (*bmap)(newobject(t.bucket))
		map.go#L266: 	if t.bucket.ptrdata == 0 {
		map.go#L305: 	mem, overflow := math.MulUintptr(uintptr(hint), t.bucket.size)
		map.go#L355: 		sz := t.bucket.size * nbuckets
		map.go#L358: 			nbuckets = up / t.bucket.size
		map.go#L363: 		buckets = newarray(t.bucket, int(nbuckets))
		map.go#L369: 		size := t.bucket.size * nbuckets
		map.go#L370: 		if t.bucket.ptrdata != 0 {
		map.go#L604: 		h.buckets = newobject(t.bucket) // newarray(t.bucket, 1)
		map.go#L834: 	if t.bucket.ptrdata == 0 {
		map.go#L1249: 		if h.flags&oldIterator == 0 && t.bucket.ptrdata != 0 {
		map_fast32.go#L110: 		h.buckets = newobject(t.bucket) // newarray(t.bucket, 1)
		map_fast32.go#L200: 		h.buckets = newobject(t.bucket) // newarray(t.bucket, 1)
		map_fast32.go#L449: 		if h.flags&oldIterator == 0 && t.bucket.ptrdata != 0 {
		map_fast64.go#L110: 		h.buckets = newobject(t.bucket) // newarray(t.bucket, 1)
		map_fast64.go#L200: 		h.buckets = newobject(t.bucket) // newarray(t.bucket, 1)
		map_fast64.go#L457: 		if h.flags&oldIterator == 0 && t.bucket.ptrdata != 0 {
		map_faststr.go#L221: 		h.buckets = newobject(t.bucket) // newarray(t.bucket, 1)
		map_faststr.go#L472: 		if h.flags&oldIterator == 0 && t.bucket.ptrdata != 0 {
		type.go#L352: 	bucket *_type // internal type representing a hash bucket